home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Papers / OS Shell in Java / Facade / TimerEvent.java < prev    next >
Encoding:
Java Source  |  1998-06-18  |  377 b   |  15 lines  |  [TEXT/dosa]

  1. //    TimerEvent.java : this is a Java source code file for the program Facade.
  2. //    Copyright 1998, Andrew S. Downs
  3. //    andrew.downs@tulane.edu
  4. //
  5. //    This source code is distributed as freeware.
  6. //    Just keep this author information in the file.  Enjoy!
  7.  
  8. import java.util.*;
  9.  
  10. public class TimerEvent extends EventObject {
  11.     TimerEvent( Object source ) {
  12.         super( source );
  13.     }
  14. }
  15.